home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / bbsutils / tb502man.arj / P105 < prev    next >
Text File  |  1994-02-13  |  2KB  |  61 lines

  1.  
  2.  
  3.  
  4.  
  5.      The TriBBS Bulletin Board System                                   105
  6.  
  7.  
  8.      ---------------------------------------------------------------------
  9.  
  10.      z,Zmodem (DSZ),sz.bat,rz.bat,y,n
  11.      m,MPt (Puma),smpt.bat,rmpt.bat,y,n
  12.      h,HS/Link,hss.bat,hsr.bat,y,n
  13.  
  14.      ---------------------------------------------------------------------
  15.  
  16.      This example file replaces TriBBS's internal Zmodem protocol with DSZ
  17.      and adds the very speedy MPt (formerly Puma) and the speedy,
  18.      bidirectional protocol HS/Link to the board's list of protocols.  Both
  19.      protocols support batch downloads and neither is an error correcting
  20.      protocol.
  21.  
  22.  
  23.      Send Batch Files
  24.      ----------------
  25.  
  26.      When TriBBS calls a send batch file, it passes the following three
  27.      parameters to the batch file:
  28.  
  29.      port number  baud rate  filename or EBATCH.DAT
  30.  
  31.      The "port number" and "baud rate" parameters are pretty self
  32.      explanatory.  The third parameter TriBBS passes to the batch file
  33.      requires a little further explanation.  If the protocol, doesn't
  34.      support batch downloads, TriBBS only passes a single "filename" to the
  35.      protocol.  Otherwise, TriBBS creates a file called "EBATCH.DAT" and
  36.      passes the name of the file to the protocol's batch file. 
  37.      "EBATCH.DAT" is simply a line-by-line listing of the files in the
  38.      batch download.
  39.  
  40.      The following is an example of a DSZ send batch file called SZ.BAT:
  41.  
  42.      ---------------------------------------------------------------------
  43.  
  44.      dsz port %1 sz -m @c:%3
  45.  
  46.      ---------------------------------------------------------------------
  47.  
  48.      Note that the above batch file enables MobyTurbo transfers.
  49.  
  50.      The following is an example of a MPt send batch file called SMPT.BAT:
  51.  
  52.      ---------------------------------------------------------------------
  53.  
  54.      mpt p%1 s  @%3
  55.  
  56.      ---------------------------------------------------------------------
  57.  
  58.  
  59.  
  60.  
  61.